home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / util / sys / SavInstaller.lha / installer / examples / stringformat.installer < prev    next >
Text File  |  1998-10-01  |  269b  |  15 lines

  1.  
  2. ; demonstration of the string format function
  3.  
  4. (set text1 ("%s %s %s" ("Hello")
  5.                        (" Wo%s" ("%sld " "r"))
  6.                        "!"
  7.            )
  8. )
  9.  
  10. (set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 3 4 10)))
  11.  
  12. (message ("%s%s" text1 text2))
  13.  
  14.  
  15.